home *** CD-ROM | disk | FTP | other *** search
- These files were written 12/23/87 and 12/24/87. Descriptions are given at
- the beginning of the C files.
-
- Tim Kemp
- P.O. 23101
- Columbus, OH 43223
-
- [Ed. note: For convenience, the descriptions have been excerpted and
- inserted below. -Fred ><>]
-
- From ILBM2C.c
- ---------------------------------------------------------------------------
- /* ILBM to C includable converter
-
- It seems as if there should be many versions of this type of utility.
- When I went looking I couldn't find any, so I wrote this. It was
- compiled with Manx 3.4.
-
- This program reads in an IFF ILBM file and outputs a file you can include
- in your C program. It does not handle files with a real mask (although
- it would be easy to incorporate that). There should be a short demo
- program with this to show how to use the file this creates.
-
- To use this program: ILBM2C infile outfile
-
- (This program is NOT very fast at reading large ILBM files. It has a
- tendency to sit and churn for quite a while.)
-
- I have decided to put this program into the public domain. Feel free to
- do with it what you want, but please leave enough of this original header
- that it is obvious where the program came from and what it is for.
-
- If you have comments, questions or spare cash, send them to:
-
- Tim Kemp
- P.O. Box 23101
- Columbus, Ohio 43223
- */
- ===========================================================================
-
- From example.c:
- ---------------------------------------------------------------------------
- /* Demonstration using file created by to IFF ILBM to includable C converter
-
- This program opens a screen and displays as many copies of the picture
- as will fit. The picture was draw by my father, Floyd Kemp.
-
- As you will see if you compile this, the arrays should be put into a
- separate file and compiled only once. I left it in this file to make
- sure that the parts stayed together.
- */
- ===========================================================================
-